.loading-cover1 {
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  width: 100%;
  height: 100%;
  font-size: 2.1em;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 99999;
}

.loading-cover1 div.inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.loading-cover1 div.inner h5 {
  color: #fff;
  font-size: 0.8em;
  text-align: center;
}

@media (min-width: 768px) {
  .loading-cover1 div.inner h5 {
    font-size: 0.6em;
  }
}

/* Redesign loader */

.centered-image {
  animation: rotateImage 2s linear infinite;
  display: block;
  margin: 0 auto;
  margin-top: 64px;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: var(--navy-color);
  font-size: 24px;

  @media (max-width: 468px) {
    font-size: 36px;
  }

  letter-spacing: 0.2px;
  text-decoration: none;
  font-weight: 300;
  text-align: center;
  text-wrap: wrap;
}

.loading-cover-new {
  background: var(--background-color);
  position: fixed;
  font-size: 14px;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  z-index: 999;

  @media (max-width: 468px) {
    width: 100vw !important;
  }
}

.loading-text-new {
  color: var(--navy-color);
  font-size: 24px;

  @media (max-width: 468px) {
    font-size: 36px;
  }

  letter-spacing: 0.2px;
  text-decoration: none;
  font-weight: 300;
  text-align: center;
  text-wrap: wrap;
}